home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Emulators / v2600 / Source.lha / Source / options.h < prev    next >
C/C++ Source or Header  |  1997-04-24  |  352b  |  24 lines

  1. #ifndef OPTIONS_H
  2. #define OPTIONS_H
  3.  
  4. enum {NTSC=0, PAL=1, SECAM=2};
  5.  
  6. /* Options common to all ports of x2600 */
  7. extern struct BaseOptions {
  8.   int rr;
  9.   int tvtype;
  10.   int lcon;
  11.   int rcon;
  12.   int bank;
  13.   char filename[80];
  14.   int sound;
  15.   int swap;
  16.   int realjoy;
  17.   int mousey;
  18.   int video;
  19. } base_opts;
  20.  
  21. int parse_options(int argc, char **argv);
  22.  
  23. #endif
  24.